Update oXs_out_frsky.cpp
[openXsensor.git] / oXs_Configurator / Python 37 Sources / .vscode / launch.json
blob0853cddf7446aa5470eee7312cfcd60a77af165b
2     // Use IntelliSense to learn about possible attributes.
3     // Hover to view descriptions of existing attributes.
4     // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5     "version": "0.2.0",
6     "configurations": [
7         {
8             "name": "Python : Fichier actuel",
9             "type": "python",
10             "request": "launch",
11             "program": "${file}",
12             "console": "integratedTerminal"
13         },
14         {
15             "name": "Python: Current File (Integrated Terminal)",
16             "type": "python",
17             "request": "launch",
18             "program": "${file}",
19             "console": "integratedTerminal"
20         },
21         {
22             "name": "Python: Remote Attach",
23             "type": "python",
24             "request": "attach",
25             "port": 5678,
26             "host": "localhost",
27             "pathMappings": [
28                 {
29                     "localRoot": "${workspaceFolder}",
30                     "remoteRoot": "."
31                 }
32             ]
33         },
34         {
35             "name": "Python: Module",
36             "type": "python",
37             "request": "launch",
38             "module": "enter-your-module-name-here",
39             "console": "integratedTerminal"
40         },
41         {
42             "name": "Python: Django",
43             "type": "python",
44             "request": "launch",
45             "program": "${workspaceFolder}/manage.py",
46             "console": "integratedTerminal",
47             "args": [
48                 "runserver",
49                 "--noreload",
50                 "--nothreading"
51             ],
52             "django": true
53         },
54         {
55             "name": "Python: Flask",
56             "type": "python",
57             "request": "launch",
58             "module": "flask",
59             "env": {
60                 "FLASK_APP": "app.py"
61             },
62             "args": [
63                 "run",
64                 "--no-debugger",
65                 "--no-reload"
66             ],
67             "jinja": true
68         },
69         {
70             "name": "Python: Current File (External Terminal)",
71             "type": "python",
72             "request": "launch",
73             "program": "${file}",
74             "console": "externalTerminal"
75         }
76     ]